home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 040a / sfxbla.zip / SETUP.BAT < prev    next >
DOS Batch File  |  1991-06-17  |  5KB  |  154 lines

  1. echo off
  2. CLS
  3. echo .
  4. echo This batch file will set up SoundFX-Blast for the graphics
  5. echo adapter for the card installed on your machine.
  6. if [%1] == [vga] goto gotvga
  7. if [%1] == [VGA] goto gotvga
  8. if [%1] == [ega] goto gotega
  9. if [%1] == [EGA] goto gotega
  10. if [%1] == [cga] goto gotcga
  11. if [%1] == [CGA] goto gotcga
  12. if [%1] == [hga] goto gothga
  13. if [%1] == [HGA] goto gothga
  14. if [%1] == [mcg] goto gotmcg
  15. if [%1] == [MCG] goto gotmcg
  16. if [%1] == [att] goto gotatt
  17. if [%1] == [ATT] goto gotatt
  18. pause
  19. CLS
  20. echo .
  21. Echo       Display Devices Supported
  22. echo .
  23. echo If you are using one of these displays/cards:
  24. echo .
  25. echo IBM Video Gate Array            IBM Corp.
  26. echo EPIC Graphic Adapter            NSI Logic
  27. echo AST-VGA                         AST Research
  28. echo Spectra VGA                     Genoa Systems Corp.
  29. echo VGA Plus                        STB Systems
  30. echo VGA Master                      Tecmar
  31. echo PC Designs VGA                  PC Designs
  32. echo Sigma VGA                       Sigma Designs
  33. echo Quad VGA                        Quadram Company
  34. echo VEGA VGA                        Video-7, Inc.
  35. echo VGA                             Tseng Labs.
  36. echo QuadVGA                         Quadram Corp.
  37. echo Paradise VGA                    Paradise Systems, Inc.
  38. echo VEGA VGA Deluxe                 Video-7, Inc.
  39. echo VGA450                          Tseng Labs.
  40. echo Maxxum VGA                      Maxxum Corp.
  41. echo .
  42. echo Type SETUP VGA at the end of this program.  ...more
  43. pause
  44. CLS
  45. echo .
  46. echo If you are using one of these displays/cards:
  47. echo .
  48. echo IBM Enhanced Graphics Adapter   IBM Corp.
  49. echo EPIC Graphic Adapter            NSI Logic
  50. echo AST-3G Model 1                  AST Research
  51. echo Spectra EGA Model 4800          Genoa Systems Corp.
  52. echo EGA Plus                        STB Systems
  53. echo EGA Master                      Tecmar
  54. echo MegaGraph Plus                  Altronics International
  55. echo PC Designs EGA                  PC Designs
  56. echo Sigma EGA                       Sigma Designs
  57. echo TEGA-22                         Tatung, America
  58. echo Quad EGA +                      Quadram Company
  59. echo VEGA                            Video-7, Inc.
  60. echo EVA                             Tseng Labs.
  61. echo Overboard                       IDEAssociates, Inc.
  62. echo QuadEGA ProSync                 Quadram Corp.
  63. echo Paradise Autoswitch             Paradise Systems, Inc.
  64. echo VEGA Deluxe                     Video-7, Inc.
  65. echo EVA/480                         Tseng Labs.
  66. echo All Aboard                      IDEAssociates, Inc.
  67. echo Maxxum EGA                      Maxxum Corp.
  68. echo .
  69. echo Type SETUP EGA at the end of this program. ...more
  70. pause
  71. CLS
  72. echo .
  73. echo If you are using one of these displays/cards:
  74. echo  .
  75. echo Hercules Monographics           Hercules Graphics Corp.
  76. echo Hercules Ramfonts               Hercules Graphics Corp.
  77. echo Hercules InColor                Hercules Graphics Corp.
  78. echo Hercules Color Graphics         Hercules Graphics Corp.
  79. echo Maxxum Monographics             Maxxum Corp.
  80. echo .
  81. echo Type SETUP HGA at the end of this program.  ...more
  82. pause
  83. echo If you are using one of these displays/cards:
  84. echo  .
  85. echo IBM Color Graphics              IBM Corp.
  86. echo ATT 6300 CGA                    AT&T Corp.
  87. echo Compaq (all models)             Compaq Computer Corp.
  88. echo Cordata (all models except
  89. echo     Intellipress)               Cordata Corp.
  90. echo Maxxum Monographics             Maxxum Corp.
  91. echo .
  92. echo Type SETUP CGA at the end of this program.  ...more
  93. pause
  94. CLS
  95. echo .
  96. echo If you are using one of these displays/cards:
  97. echo  .
  98. echo Multi-Color Graphic Adaptor
  99. echo .
  100. echo Type SETUP MCG at the end of this program.  ...more
  101. pause
  102. echo .
  103. echo .
  104. echo If you are using one of these displays/cards:
  105. echo  .
  106. echo ATT 6300 CGA                    AT&T Corp.
  107. echo .
  108. echo Type SETUP ATT at the end of this program.  ...more
  109. pause
  110. echo .
  111. echo .
  112. echo Please type one of the following to set up the graphics driver
  113. echo "SETUP VGA" for the VGA graphics card,
  114. echo "SETUP EGA" for the EGA graphics card,
  115. echo "SETUP CGA" for the CGA graphics card,
  116. echo "SETUP HGA" for the Hercules graphics card,
  117. echo "SETUP MCG" for the Multi-Color graphics card,
  118. echo "SETUP ATT" for the ATT 6300 CGA graphics card,
  119. GOTO end
  120. : gotvga
  121. echo .
  122. echo Setting up for VGA card
  123. copy vgarun.com synrun.com
  124. GOTO quit
  125. : gotega
  126. echo .
  127. echo Setting up for EGA card
  128. copy egarun.com synrun.com
  129. GOTO quit
  130. : gotcga
  131. echo .
  132. echo Setting up for CGA card
  133. copy cgarun.com synrun.com
  134. GOTO quit
  135. : gothga
  136. echo .
  137. echo Setting up for Hercules card
  138. copy hgarun.com synrun.com
  139. GOTO quit
  140. : gotmcg
  141. echo .
  142. echo Setting up for Multi-Color card
  143. copy mcgrun.com synrun.com
  144. GOTO quit
  145. : gotatt
  146. echo .
  147. echo Setting up for ATT 6300 card
  148. copy att6300.com synrun.com
  149. GOTO quit
  150. : quit
  151. echo Done
  152. : END
  153.  
  154.